Lucene search
+L
LinuxLinux Kernel

14985 matches found

CVE
CVE
added 2025/09/15 2:22 p.m.42 views

CVE-2023-53231

The CVE-2023-53231 entry concerns the Linux kernel erofs subsystem. The vulnerability stems from incorrect detection of atomic context when z_erofs_decompressqueue_endio can be invoked under an RCU/lock context (e.g., from blk_mq_flush_plug_list). The patch updates the context check to rcu_read_l...

5.5CVSS6AI score0.00137EPSS
Save
CVE
CVE
added 2025/09/15 2:22 p.m.42 views

CVE-2023-53235

CVE-2023-53235: In the Linux kernel, a use-after-free can occur in drm_dev_put() during device-managed cleanup when a driver is freed after kunit-managed resources. The root cause is dereferencing a driver that has become freed due to mismatched resource lifetimes (driver allocated as kunit-manag...

7.8CVSS6AI score0.00164EPSS
Save
CVE
CVE
added 2025/09/16 8:11 a.m.42 views

CVE-2023-53297

CVE-2023-53297 affects the Linux kernel Bluetooth L2CAP path, where conn->chan_lock was not held before l2cap_get_chan_by_scid; if that call returns NULL, a “bad unlock balance” condition is triggered. Multiple connected advisories (Astra Linux, MiracleLinux, RHEL kernels) document the fix as ...

8.8CVSS6.2AI score0.00215EPSS
Save
CVE
CVE
added 2025/09/17 2:56 p.m.42 views

CVE-2023-53339

CVE-2023-53339 : In the Linux kernel’s Btrfs code, a race between pausing and balancing can cause a BUG_ON panic in btrfs_cancel_balance due to an unaccounted race. The race has no other side effects, and a fix has been applied in the upstream patch set. The vulnerability affects local attackers ...

5.5CVSS6AI score0.00201EPSS
Save
CVE
CVE
added 2025/09/17 2:56 p.m.42 views

CVE-2023-53346

The CVE-2023-53346 entry concerns a memory-leak in the Linux kernel’s kernel/fail_function logic. The issue occurs when using debugfs_lookup(): the returned object must be released with dput(), otherwise memory leaks accrue over time. The associated advisories indicate a straightforward remediati...

5.5CVSS6.2AI score0.00198EPSS
Save
CVE
CVE
added 2025/09/17 2:56 p.m.42 views

CVE-2023-53353

The CVE concerns the Linux kernel in accel/habanalabs where the memory manager IDR destruction is postponed from the memory manager fini to hpriv_release(). The issue arises because destroying the IDR while a user context may still hold memory buffers could cause release calls to fail later, crea...

5.5CVSS6AI score0.00167EPSS
Save
CVE
CVE
added 2025/09/17 2:56 p.m.42 views

CVE-2023-53365

CVE-2023-53365 is documented across multiple advisories as a Linux kernel vulnerability affecting IPv6 multicast report handling. The issue arises in the ip6mr_cache_report path, where skb_push may move data backwards by a signed length (skb_network_offset(pkt) equals 4), leading to an invalid sk...

5.5CVSS5.9AI score0.0019EPSS
Save
CVE
CVE
added 2025/09/17 2:56 p.m.42 views

CVE-2023-53367

CVE-2023-53367 concerns a memory leak in the Linux kernel’s accel/habanalabs code path (mem mappings in user_mappings) that could occur when clearing user_mappings during rapid context reuse. The connected OSV entries indicate Rootio‑Linux patches fixing this CVE across Root:Ubuntu:22.04 and Root...

5.5CVSS6.1AI score0.00167EPSS
Save
CVE
CVE
added 2025/09/18 1:33 p.m.42 views

CVE-2023-53378

CVE-2023-53378 (Linux kernel, DRM/i915) : The vulnerability stems from i915_gem_object_is_framebuffer() not treating the DPT BO (display plane table backing object) as a framebuffer. As a result, the shrinker can evict the DPT BO while the FB BO remains bound, if the DPT came from regular shmem. ...

7.8CVSS6.1AI score0.00151EPSS
Save
CVE
CVE
added 2025/09/18 1:33 p.m.42 views

CVE-2023-53380

CVE-2023-53380 affects the Linux kernel md/raid10 code. A null pointer dereference could occur in raid10_sync_request when a faulty mreplace is set between two checks. The fix merges the two checks into one and replaces the two variables with a single mreplace determination, preventing the race c...

5.5CVSS6.1AI score0.00145EPSS
Save
CVE
CVE
added 2025/09/18 1:33 p.m.42 views

CVE-2023-53387

CVE-2023-53387 affects the Linux kernel in the SCSI UFS path (ufshcd). In the UFS error handling flow, a device management command (NOP OUT) timeout can leave hba->dev_cmd.complete not NULL; if the device later completes the command, complete() is invoked for a stack-allocated structure, causi...

7.8CVSS6.1AI score0.00151EPSS
Save
CVE
CVE
added 2025/09/18 1:33 p.m.42 views

CVE-2023-53396

The CVE-2023-53396 issue affects the Linux kernel ubifs: memory leak in do_rename when renaming a file in an encrypted directory. The leak stems from fscrypt_setup_filename allocating memory for the file name, which is never used and is not freed before returning. kmemleak shows the unreferenced ...

5.5CVSS6.1AI score0.00148EPSS
Save
CVE
CVE
added 2025/09/18 1:58 p.m.42 views

CVE-2023-53408

CVE-2023-53408 affects the Linux kernel’s trace/blktrace path. The issue is a memory leak when using debugfs_lookup(); the returned object must be dput()’d, otherwise memory leaks accumulate. The documented fix simplifies handling by replacing the call with debugfs_lookup_and_remove(), which perf...

5.5CVSS6.2AI score0.00145EPSS
Save
CVE
CVE
added 2025/09/18 1:58 p.m.42 views

CVE-2023-53409

The CVE-2023-53409 issue concerns the Linux kernel: when using debugfs_lookup(), the returned object must be released with dput() to prevent a memory leak. The advisories state a fix by using debugfs_lookup_and_remove(), which handles the necessary logic in one step, mitigating the memory leak. A...

5.5CVSS6.2AI score0.00145EPSS
Save
CVE
CVE
added 2025/09/18 1:58 p.m.42 views

CVE-2023-53410

CVE-2023-53410 (Linux kernel) : The issue is a memory leak in USB ULPI related to using debugfs_lookup() without proper dput() on the result. The recommended remediation is to replace the call with debugfs_lookup_and_remove(), which handles lookup and cleanup in one step. Affected context and ref...

5.5CVSS6.2AI score0.00143EPSS
Save
CVE
CVE
added 2025/09/18 1:58 p.m.42 views

CVE-2023-53418

The CVE-2023-53418 issue affects the Linux kernel USB gadget driver, specifically the lpc32xx_udc in the USB subsystem. The root cause was a memory leak when using debugfs_lookup() because the returned object was not paired with a dput(), leaving memory allocated over time. The provided fixes sim...

5.5CVSS6.2AI score0.00145EPSS
Save
CVE
CVE
added 2025/09/18 4:04 p.m.42 views

CVE-2023-53420

CVE-2023-53420 affects the Linux kernel NTFS code path. The issue arises in ntfs_listxattr() (fs/ntfs3/xattr.c) where slab-out-of-bounds access could occur due to incorrect handling in the ea_all iteration when aea->name_len is 0, potentially reading invalid memory during listxattr(). The vend...

7.1CVSS6.1AI score0.00159EPSS
Save
CVE
CVE
added 2025/09/18 4:04 p.m.42 views

CVE-2023-53438

CVE-2023-53438 : In the Linux kernel, the AMD Zen IF poison error path could misclassify context due to non-synchronous delivery of poison by the IF unit. The issue is mitigated by adding a quirk to always save the Code Segment (CS) register when poison is consumed from the IF unit banks, ensurin...

5.5CVSS6.1AI score0.00145EPSS
Save
CVE
CVE
added 2025/10/01 11:42 a.m.42 views

CVE-2023-53474

In CVE-2023-53474, the Linux kernel’s x86 MCE AMD code fixed an overflow in bank_map by switching from unsigned int to u64 and using BIT_ULL when manipulating bits. The MCA bank count is 64 (MAX_NR_BANKS), and the previous 32-bit bank_map could shift past 32, triggering UBSAN shift-out-of-bounds....

7.8CVSS6.1AI score0.00164EPSS
Save
CVE
CVE
added 2025/10/01 11:42 a.m.42 views

CVE-2023-53487

CVE-2023-53487 concerns the Linux kernel under POWERPC: the powerpc/rtas_flash path allowed a user to copy memory into flash_block_cache objects when hardened usercopy is enabled (CONFIG_HARDENED_USERCOPY=y). The flaw is triggered via the /proc/powerpc/rtas/firmware_update interface, causing a ke...

7.8CVSS6.1AI score0.00164EPSS
Save
CVE
CVE
added 2025/10/01 11:45 a.m.42 views

CVE-2023-53509

CVE-2023-53509 : In the Linux kernel qed_mcp_trace_dump() path, the code previously slept due to a 10µs-delayed loop in qed_mcp_cmd_and_union() which can spin up to 500k iterations, potentially blocking a thread for several seconds. The vulnerability description states that sleeping is permitted ...

5.5CVSS6.3AI score0.00154EPSS
Save
CVE
CVE
added 2025/10/01 11:45 a.m.42 views

CVE-2023-53510

CVE-2023-53510 : Linux kernel SCSI UFS core vulnerability. The issue is that ufshcd_queuecommand() could be invoked twice for a SCSI command before completion, caused by improper handling of lrbp->cmd in command submission paths. The fix, per the description, disables checking/clearing of the ...

7.8CVSS6.3AI score0.00154EPSS
Save
CVE
CVE
added 2025/10/01 11:46 a.m.42 views

CVE-2023-53525

CVE-2023-53525 affects the Linux kernel RDMA CMA component. The issue is that multicast join logic previously allowed non-UD qp_type modes; the patch updates behavior to permit multicast joins only for UD qp_type and ensures qkey is set to a default when not provided, addressing an uninitialized ...

5.5CVSS6.1AI score0.00145EPSS
Save
CVE
CVE
added 2025/10/04 3:44 p.m.42 views

CVE-2023-53605

CVE-2023-53605 refers to a Linux kernel issue in the DRM AMD display driver where a memory leak occurred in the dc_construct_ctx() path. The fix, as described in the initial document, is a commit that resolves the leak in that function. The entry indicates a local attack vector with low attack co...

5.5CVSS6.2AI score0.00145EPSS
Save
CVE
CVE
added 2025/10/07 3:19 p.m.42 views

CVE-2023-53628

CVE-2023-53628 affects the Linux kernel drm/amdgpu path. The issue arises from the gfx_v11_0_cp_ecc_error_irq_funcs being retired in gfx11; gfx_v11_0_hw_fini still called amdgpu_irq_put to disable the interrupt, which led to a call trace during suspend/reset. The patch history (v2–v5) shows separ...

5.5CVSS6.3AI score0.00164EPSS
Save
CVE
CVE
added 2025/10/07 3:21 p.m.42 views

CVE-2023-53658

CVE-2023-53658 affects the Linux kernel BCM-QSPI SPI driver (spi/bcm-qspi). If neither hif_mspi nor mspi resources exist, probe may succeed while doing nothing, then removal dereferences a NULL drvdata pointer. The fix unconditionally calls devm_ioremap_resource(), which handles NULL resources an...

5.5CVSS6AI score0.00141EPSS
Save
CVE
CVE
added 2025/10/07 3:21 p.m.42 views

CVE-2023-53661

CVE-2023-53661 affects the Linux kernel bnxt driver. The issue is an arithmetic overflow in bnxt_get_nvram_directory() caused by the use of a multiplication macro instead of casting operands to a larger type when performing arithmetic. The vulnerability could enable an overflow condition within t...

5.5CVSS6.5AI score0.00145EPSS
Save
CVE
CVE
added 2025/07/03 8:35 a.m.42 views

CVE-2025-38144

CVE-2025-38144 concerns the Linux kernel watchdog code for Lenovo SE30 hardware. The vulnerability stems from a NULL pointer dereference in lenovo_se30_wdt_probe() when devm_ioremap() returns NULL on error, and the code fails to check this condition. A fix was implemented to add a NULL check afte...

5.5CVSS7.1AI score0.0014EPSS
Save
CVE
CVE
added 2025/07/25 12:47 p.m.42 views

CVE-2025-38358

CVE-2025-38358 relates to a race in Linux kernel’s btrfs async reclaim path. The bug occurs when an ordered iput is delayed while BTRFS_FS_STATE_NO_DELAYED_IPUT is already set, triggering an assertion in btrfs_add_delayed_iput during close_ctree. The described scenario: async reclaim schedules wr...

4.7CVSS6.1AI score0.00098EPSS
Save
CVE
CVE
added 2025/07/25 12:53 p.m.42 views

CVE-2025-38378

CVE-2025-38378 affects the Linux kernel HID path for appletb-kbd. The defect is a slab use-after-free caused when a timer (kbd->inactivity_timer) is armed after probe failure and later expires, accessing memory (kbd) that has been freed. Root cause: failure paths do not disarm the timer. Fixes...

7.8CVSS6AI score0.00148EPSS
Save
CVE
CVE
added 2025/08/16 10:54 a.m.42 views

CVE-2025-38504

Summary: CVE-2025-38504 relates to the Linux kernel, specifically the io_uring/zcrx component. The connected documents describe a code-level fix in the destruction path for page pools, where a misplaced warning could trigger during destruction and affect niovs handling. The root cause is that nio...

5.5CVSS6.5AI score0.0013EPSS
Save
CVE
CVE
added 2025/09/05 5:20 p.m.42 views

CVE-2025-39674

CVE-2025-39674 affects the Linux kernel scsi: ufs: ufs-qcom path. Root cause: a regression from removing MSI descriptor abuse caused a NULL pointer dereference when Platform MSI allocation fails while configuring ESI, due to cleanup using __free() on resources that were never allocated. The issue...

5.5CVSS6AI score0.00137EPSS
Save
CVE
CVE
added 2025/09/05 5:21 p.m.42 views

CVE-2025-39712

The CVE-2025-39712 issue affects the Linux kernel media/mt9m114 driver. The deadlock occurred when using V4L2 subdev pad ops get_frame_interval/set_frame_interval due to locking in the subdev state plus the driver. The fix removes the redundant lock operations from mt9m114_ifp_get_frame_interval(...

5.5CVSS5.8AI score0.00112EPSS
Save
CVE
CVE
added 2025/09/11 4:56 p.m.42 views

CVE-2025-39771

The CVE-2025-39771 entry concerns the Linux kernel regulator driver pca9450. The issue arises in the pca9450_restart handling during module probe, where a notifier callback is already registered, leading to a kernel dump if not managed. The documented remediation is to use devm_register_sys_off_h...

5.5CVSS6AI score0.00127EPSS
Save
CVE
CVE
added 2025/09/11 4:56 p.m.42 views

CVE-2025-39775

CVE-2025-39775: In the Linux kernel, mm/mremap: fix WARN with uffd that has remap events disabled. Root cause: during an mremap recovery, recursion recurses on the original page-table move but not the recovery move, triggering a WARN in mremap.c. The fix adds a double-VMAs PMD/PUD level check (be...

5.5CVSS6.2AI score0.00128EPSS
Save
CVE
CVE
added 2025/09/24 11:02 a.m.42 views

CVE-2025-39890

CVE-2025-39890 fixes a memory leak in the Linux kernel’s ath12k driver. In ath12k_service_ready_ext_event(), the code path that handles a failure does not free svc_rdy_ext.mac_phy_caps, leading to a leaked 1024-byte object reported by kmemleak. The patch ensures that mac_phy_caps is freed in erro...

5.5CVSS6.1AI score0.00145EPSS
Save
CVE
CVE
added 2025/10/01 7:42 a.m.42 views

CVE-2025-39895

CVE-2025-39895: Linux kernel sched_numa_find_nth_cpu() could dereference a null pointer when the CPU mask used by sched_domains_numa_masks does not intersect with the cpus offline. The fix makes the function bail out when bsearch returns NULL instead of dereferencing, preventing a kernel Oops. Af...

5.5CVSS6AI score0.00146EPSS
Save
CVE
CVE
added 2025/10/01 8:07 a.m.42 views

CVE-2025-39926

CVE-2025-39926 in the Linux kernel fixes a logic error in genetlink: in genl_bind(), bind() could be invoked after a failed capability check (-EPERM), letting callbacks run for unauthorized callers. The patch ensures bind() is called only after successful permission checks (after the “if (ret) br...

5.5CVSS6.1AI score0.00143EPSS
Save
CVE
CVE
added 2025/10/04 7:30 a.m.42 views

CVE-2025-39932

CVE-2025-39932 concerns the Linux kernel SMB client path where in smbd_destroy() a memory may be destroyed while post_send_credits_work could still be pending, potentially causing a use-after-free scenario illustrated by rdma_rxe/ib_drain_qp flows. The issue arises when put_receive_buffer() trigg...

9.8CVSS6.2AI score0.00289EPSS
Save
CVE
CVE
added 2026/01/13 3:34 p.m.42 views

CVE-2025-71080

CVE-2025-71080 concerns a race in Linux kernel IPv6 PREEMPT_RT code. On PREEMPT_RT kernels, after rt6_get_pcpu_route() returns NULL, a preemption can allow another task on the same CPU to install a pcpu_rt entry; when the first task resumes, the cmpxchg() in rt6_make_pcpu_route() may fail and tri...

7.5CVSS6.2AI score0.0027EPSS
Save
CVE
CVE
added 2026/01/14 3:06 p.m.42 views

CVE-2025-71118

CVE-2025-71118 : The connected documents confirm a Linux kernel/ACPICA issue where walking the ACPI Namespace with a NULL start_node could dereference a NULL pointer in acpi_ns_get_next_node. The root cause is an access to a member of parent_node when start_node is NULL, which could crash the sys...

5.5CVSS6AI score0.00131EPSS
Save
CVE
CVE
added 2026/01/14 3:08 p.m.42 views

CVE-2025-71144

The CVE-2025-71144 issue is in the Linux kernel’s MPTCP code path, where after a commit, if the MPC subflow is already TCP_CLOSE or falls back to TCP, mptcp_do_fastclose() may skip setting the send_fastclose flag, causing __mptcp_close_ssk() to stop resetting the subflow context. Consequently, a ...

5.5CVSS6.1AI score0.00121EPSS
Save
CVE
CVE
added 2026/01/23 3:23 p.m.42 views

CVE-2025-71159

CVE-2025-71159 — Linux kernel btrfs use-after-free in delayed inode . Affected: the btrfs_get_or_create_delayed_node() path in fs/btrfs/delayed-inode.c. Root cause: the delayed_node refcount was set before acquiring root->delayed_nodes, creating a missing memory barrier and allowing stores to ...

9.8CVSS5.3AI score0.00214EPSS
Save
CVE
CVE
added 2026/02/14 4:27 p.m.42 views

CVE-2025-71204

CVE-2025-71204 affects the Linux kernel SMB server (smb/server) due to a refcount leak in parse_durable_handle_context(). If the command is a replay operation and -ENOEXEC is returned, the refcount of ksmbd_file must be released. The issue has concrete technical details across multiple sources (N...

7.5CVSS5.3AI score0.0028EPSS
Save
CVE
CVE
added 2026/02/18 2:53 p.m.42 views

CVE-2025-71233

CVE-2025-71233 affects the Linux kernel PCI endpoint implementation. The issue arises from asynchronous sub-group creation via delayed work, which could NULL-dereference when the driver directory is removed before the work completes. The documented fix is to replace configfs_register_group() with...

5.5CVSS5.2AI score0.00118EPSS
Save
CVE
CVE
added 2026/05/06 11:32 a.m.42 views

CVE-2025-71285

Summary of the CVE-2025-71285 cluster: The Linux kernel’s net/qrtr MHI auto_queue feature for IPCR DL channels is being removed. The race occurs when the MHI stack can call the DL path callback before the QRTR client driver is fully initialized, risking NULL pointer dereferences. The fix disables...

5.5CVSS5.8AI score0.00126EPSS
Save
CVE
CVE
added 2026/01/31 11:38 a.m.42 views

CVE-2026-23015

CVE-2026-23015 relates to the Linux kernel gpio_mpsse driver: a reference leak in gpio_mpsse_probe() error paths due to usb_get_dev() not being released. The fix uses device-managed helper functions and removes the usb_put_dev() call in the disconnect path, allowing automatic release of the refer...

5.5CVSS5.7AI score0.00133EPSS
Save
CVE
CVE
added 2026/02/04 4:07 p.m.42 views

CVE-2026-23065

CVE-2026-23065 is a Linux kernel issue affecting the x86/amd platform where a tmp buffer allocated in wbrf_record() is leaked on error in acpi_evaluate_dsm(). The vulnerability’s root cause is a memory leak in the error path, fixed by explicitly freeing the tmp buffer in the error handling path o...

5.5CVSS5.3AI score0.00125EPSS
Save
CVE
CVE
added 2026/02/04 4:07 p.m.42 views

CVE-2026-23071

CVE-2026-23071 (Linux kernel) resolves a race in regmap hwspinlock irqsave. The bug occurred when the shared member map->spinlock_flags was passed directly to hwspin_lock_timeout_irqsave, allowing concurrent contexts contending for the lock to overwrite the shared flags and corrupt the lock ow...

4.7CVSS5.2AI score0.00103EPSS
Save
CVE
CVE
added 2026/02/14 4:01 p.m.42 views

CVE-2026-23160

CVE-2026-23160 affects the Linux kernel octep (octeon_ep) path. The vulnerability arises when octep_ctrl_net_init() fails inside octep_device_setup(): resources remain mapped and configuration memory isn’t freed, causing a memory leak. A patch introduces a cleanup jump to the unsupported_dev labe...

5.5CVSS5.3AI score0.00114EPSS
Save
Total number of security vulnerabilities14985